.main-section {
    /* background-image: url("./../../images/about-bg1.png"); */
    /* background-position: center; */
    height: 500px;
    /* overflow: hidden; */
}

.main-section .container {
    position: relative;
    height: 500px;
    display: flex;
    align-items: flex-end;
}

.main-section .container .about-logo {
    position: absolute;
    right: 0;
    top: 0;
    height: 75%;
    width: 100%;
}

.main-section .head {
    border-left: 5px solid var(--primary);
    padding-left: 10px;
    width: 50%;
}

.message-vision .img {
    height: 100px;
    height: 100px;
    aspect-ratio: 1/1;
    object-fit: contain;
    margin: auto;
}

.message-vision .head {
    color: var(--primary);
}

.message-vision .des {
    text-align: justify;
}

/*experinces*/
.experinces .img {
    width: 100%;
    height: 300px;
    object-fit: contain;
}



/* === removing default button style ===*/
.button-animation-text {
    margin: 0;
    height: auto;
    background: transparent;
    padding: 0;
    border: none;
    cursor: pointer;
}

/* button styling */
.button-animation-text {
    --border-right: 6px;
    --text-stroke-color: var(--primary);
    --animation-color: var(--sec);
    --fs-size: 1.5em;
    letter-spacing: 3px;
    text-decoration: none;
    font-size: var(--fs-size);
    position: relative;
    color: transparent;
    -webkit-text-stroke: 1px var(--text-stroke-color);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .button-animation-text {
        --fs-size: 1em;
    }
}

/* this is the text, when you hover on button */
.hover-text {
    white-space: nowrap;
    position: absolute;
    box-sizing: border-box;
    content: attr(data-text);
    color: var(--animation-color);
    width: 0%;
    inset: 0;
    border-right: var(--border-right) solid var(--animation-color);
    border-radius: 4px;
    overflow: hidden;
    transition: 1s;
    -webkit-text-stroke: 1px var(--animation-color);
    animation: animation-text 5s infinite alternate;
}

/* animation */
@keyframes animation-text {
    0% {
        width: 00%;
        filter: drop-shadow(0 0 0 white);
    }

    100% {
        width: 100%;
        filter: drop-shadow(0 0 23px var(--animation-color));
    }
}

/* hover */
/* .projects:hover .hover-text {
    width: 100%;
    filter: drop-shadow(0 0 23px var(--animation-color));
}

.sliderBgSetting:hover .hover-text {
    width: 100%;
    filter: drop-shadow(0 0 23px var(--animation-color));
} */

/* end span-3d-animation */

.span-3d-animation {
    position: relative;
    display: inline-flex;
    width: 100%;
    height: 100px;
    margin: 0 15px;
    perspective: 1000px;
}

.span-3d-animation a {
    font-size: 19px;
    letter-spacing: 1px;
    transform-style: preserve-3d;
    transform: translateZ(-25px);
    transition: transform .25s;
    width: 100%;
}

.span-3d-animation a:before,
.span-3d-animation a:after {
    position: absolute;
    content: "23 years of experience and quality";
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid var(--sec);
    box-sizing: border-box;
    border-radius: 5px;
}

.span-3d-animation a:before {
    color: #fff;
    background: var(--sec);
    transform: rotateY(0deg) translateZ(50px);
}

.span-3d-animation a:after {
    color: var(--sec);
    transform: rotateX(90deg) translateZ(25px);
    content: "23 years of experience and quality";
}

.container-experince:hover a {
    transform: translateZ(-25px) rotateX(-90deg);
}

.experinces .des {
    color: #636262;
    /* text-align: justify; */
}

/* end span-3d-animation */
/*goals*/
.goals .goal {
    border: 2px solid var(--sec);
    border-radius: 20px;
}

.goals .hed,
.founders .founders_header .hed {
    color: #000;
    position: relative;
    width: fit-content;
    margin: auto;
}

.goals .hed::before,
.founders .founders_header .hed::before {
    position: absolute;
    content: "";
    width: 15px;
    height: 15px;
    background-color: var(--sec);
    bottom: -10px;
    left: 0;
    transform: translate(0, 10px);
}

.goals .hed::after,
.founders .founders_header .hed::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 3px;
    background-color: var(--sec);
    bottom: -5px;
    left: 0;
    transform: translate(0, 10px);
}

.goals .hed span {
    color: var(--sec) !important;
}

.goals .goal p {
    color: #fff;
    height: 100px;
    text-align: center;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    overflow-y: clip;
    -webkit-box-orient: vertical;
}

.goals .goal_content {
    background-color: var(--primary);
    border-radius: 10px;
}

.goals .goal_circle {
    height: 100%;
    background-color: #fff;
    width: 25%;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    transform: translateY(-10%);
}

/*  */
.wrapper svg {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
}

.wrapper svg text {
    animation: stroke 5s infinite alternate;
    stroke-width: 2;
    stroke: var(--sec);
    font-size: 50px;
    color: white;
}

@keyframes stroke {
    0% {
        fill: rgba(250, 250, 250, 1);
        stroke: var(--sec);
        stroke-dashoffset: 25%;
        stroke-dasharray: 0 50%;
        stroke-width: 1;
    }

    70% {
        fill: rgba(72, 138, 204, 0);
        stroke: var(--sec);
    }

    80% {
        fill: rgba(72, 138, 204, 0);
        stroke: var(--sec);
        stroke-width: 1;
    }

    100% {
        fill: white;
        stroke: rgba(54, 95, 160, 0);
        stroke-dashoffset: -25%;
        stroke-dasharray: 50% 0;
        stroke-width: 0;
    }
}

.wrapper {
    background-color: #FFFFFF
}

/*  */

.goals .goal_circle .circ i {
    color: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transform: rotate(45deg);
}

.goals .line {
    height: 2px;
    width: 25%;
    background-color: var(--sec);
}


.goals .goal .head {
    font-weight: 600;
    color: var(--sec);
    text-align: center;
}

/* .opinions */
.founders .card {
    width: 100%;
    border: 1px #000 solid;
    color: rgba(0, 0, 0, 1);
    background-color: white;
    position: relative;
    height: 350px;
    border-radius: 20px;
    transition: var(--main-transtion);
}

.founders .founders_header .hed {
    color: #000;
}

.founders .founders_header .hed span {
    color: var(--sec) !important;
}

.founders .card .card-img-top {
    width: 85%;
    border-radius: 50%;
    margin: 0 auto;
    height: 200px;
    object-fit: scale-down;
    transform: translate(0, -100px);
}

.founders .card .card-title {
    color: #000;
}

.founders .card .card-text {
    color: #000;
}

.founders .card i {
    color: var(--sec);
    font-size: 25px;
}

.founders .card .card-body {
    margin-top: -100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.founders .sec .card {
    width: 100%;
    background-color: black;
    border: 1px var(--primary) solid;
    color: rgba(0, 0, 0, 1);
    background-color: var(--primary);
    position: relative;
    height: 400px;
    border-radius: 25px;
    transform: translateY(-50px);
}

@media (max-width: 768px) {
    .founders .sec .card {
        height: 350px;
        transform: translateY(0);
    }
}

.founders .sec .card .card-title {
    color: white;

}

.founders .sec .card .card-text {
    color: white;
    text-align: justify;
}

.founders .sec .card i {
    color: white;
    font-size: 25px;
}

.founders_header .opinion {
    color: var(--primary);
}

.founders_header p {
    color: white;
}

.founders .line {
    height: 2px;
    width: 25%;
    background-color: var(--sec);
}

.founders .sqr {
    width: 20px;
    height: 20px;
    background-color: var(--sec);
}




























/* for all social containers*/
.socialContainer {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition-duration: 0.3s;
}

.founders .sec .socialContainer {
    background-color: white;
}

.founders .sec .socialSvg path {
    fill: rgb(44, 44, 44);
}

.founders .sec .socialContainer:hover path {
    fill: white;
}

/* instagram*/
.founders .containerOne:hover {
    background-color: #d62976;
    transition-duration: 0.3s;
}

/* twitter*/
.founders .containerTwo:hover {
    background-color: #00acee;
    transition-duration: 0.3s;
}

/* linkdin*/
.founders .containerThree:hover {
    background-color: #0072b1;
    transition-duration: 0.3s;
}

/* Whatsapp*/
.founders .containerFour:hover {
    background-color: #25D366;
    transition-duration: 0.3s;
}

.socialContainer:active {
    transform: scale(0.9);
    transition-duration: 0.3s;
}

.socialSvg {
    width: 15px;
}

.socialSvg path {
    fill: rgb(255, 255, 255);
}

.socialContainer:hover .socialSvg {
    animation: slide-in-top 0.3s both;
}

@keyframes slide-in-top {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
